[macosx]does dlopen call open and read functions?

Posted by zbencik on Stack Overflow See other posts from Stack Overflow or by zbencik
Published on 2010-02-09T08:02:44Z Indexed on 2010/06/14 20:02 UTC
Read the original article Hit count: 240

Hello,

I've intercepted(interposed) dlopen function under MacOS X and some other functions. I see how my applications calls dlopen in the log, but don't find anything related to open/read functions after dynamic library was dlopened. How does the system accesses and reads the dynamic library file? I've looked at the source code of dyld, and it does call open/read on dlopen. Can anybody let me know what I'm missing? intercepted functions: dlopen, open, read, write, access, all stat functions, close, etc.

thanks, any help is highly appreciated.

© Stack Overflow or respective owner

Related posts about macosx

Related posts about intercept